home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / BASICS compilation.adf / NewErrors < prev    next >
Text File  |  1988-01-20  |  1KB  |  33 lines

  1. Additional Compiler Error Messages
  2. ==================================
  3. 33 COMMON must be followed by SHARED not %
  4. 35 WIDTH statement badly formed
  5.     WIDTH LPRINT and WIDTH# should be followed by a channel
  6.     not a string
  7. 37 END FUNCTION expected
  8.     END DEF or END SUB has been used when it should be END FUNCTION.
  9.     This is a warning
  10. 48 SUB/FUNCTION % declared but never defined
  11.     There is no coresponding SUB..END SUB or FUNCTION..END FUNCTION
  12.     definition corresponding to this declare statement
  13. 70 LIBRARY expected in DECLARE statement
  14.     The name of a library routine has been used in a DECALRE
  15.     statement but hasn't been followed by LIBRARY. Alternatively
  16.     if this is a BASIC function the same name as a library routine
  17.     has been used.
  18. 71 DECLARE..LIBRARY must be after LIBRARY statement
  19.     This is a restriction at present. Move the LIBRARY statement
  20.     before the DECLARE.
  21. 73 LIBRARY routine % mis-used
  22.     A library sub-program has been used a function or a library
  23.     function as a sub=program.
  24. 74 Unknown meta-command %
  25.     This will occur in invalid REM $ statements. This is a warning;
  26.     the rest of the line will be ignored. 
  27. 130 Too many parameters for statement
  28.     May occur for COLOR,LOCATE and OBJECT.PLANES statements.
  29. 137 ON/OFF expected on %
  30.     May occur for COLLISION,MENU,MOUSE,BREAK,TIMER and REM $EVENT
  31.     statements. Note that STOP may be used in all but REM $EVENT
  32.     and that MENU RESET is also legal
  33.